home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / util / cinstp15.zip / CHIEF.FAQ < prev    next >
Text File  |  1995-01-18  |  4KB  |  93 lines

  1.             CHIEF'S INSTALLER PRO: FREQUENTLY ASKED QUESTIONS
  2.             -------------------------------------------------
  3.  
  4. Please READ this file BEFORE contacting me with any questions!!
  5. ^^^^^^                ^^^^^^
  6.  
  7. 1.    Q: WHAT RESERVED WORDS (COMMANDS) DO I ACTUALLY *NEED* IN MY
  8.          WINSTALL.INF FILE?
  9.  
  10.       A: Most of the commands in the INF file are optional. However, some
  11.          of them are essential. At the absolute minimum, you MUST have the
  12.          following;
  13.                    $TITLE
  14.                    $DISK1
  15.                    $SPACE
  16.                    $TARGET
  17.  
  18.  
  19. 2.    Q: WHAT FILES IN THE CHIEF'S INSTALLER PRO PACKAGE ARE ABSOLUTELY
  20.          NECESSARY FOR AN INSTALLATION?
  21.  
  22.       A: As with the commands, most of the files in the package are
  23.          optional. At the absolute minimum, you must have;
  24.                    INSTALL.EXE
  25.                    WINSTALL.INF
  26.  
  27.          The installation will run perfectly well with these two files.
  28.          However, if you want the "banner" to be displayed, you must also
  29.          have WINSTALP.DLL. If you are using a language other than
  30.          English, you must have a copy of WINSTALL.DLL compiled with the
  31.          string resources translated to your language.
  32.  
  33.  
  34. 3.    Q: WHY DO I ALWAYS GET A DIALOG TELLING ME THAT THE INSTALLATION
  35.          IS NOT COMPLETE WHEN I KNOW THAT IT IS?
  36.  
  37.       A: The installer tries to match the figure in your $SPACE line with
  38.          the sizes of the files installed (to approximately 2% either way).
  39.          A substantial (more than 2%) discrepancy leads to this error
  40.          dialog. The solution is to make sure that your $SPACE information
  41.          is accurate, or to disable the end dialog by using the
  42.          $NO-END-DIALOG command.
  43.  
  44.          Note that if you do not ensure the accuracy of your $SPACE line,
  45.          the progress "percent" meter will also not be accurate - and in
  46.          such cases, you SHOULD use $NO-END-DIALOG otherwise your users
  47.          will get a spurious error message which will confuse them into
  48.          thinking that the installation has failed.
  49.  
  50.          The easiest way to calculate ALL your space requirements is to
  51.          run AUTOCALC.EXE, AFTER completing your INF file. You can then
  52.          use the figures that it supplies to replace the ones you had before.
  53.  
  54.  
  55.  
  56. 4.    Q: I HAVE SPECIFIED CERTAIN FILES TO BE INSTALLED INTO THE WINDOWS
  57.          SYSTEM DIRECTORY WITH THE $SYSDIR COMMAND. WHY ARE THEY NOT BEING
  58.          INSTALLED?
  59.  
  60.       A: The $SYSDIR and $WINDIR lines only specify the DESTINATION of the
  61.          files on those lines (the default is to install all files into the
  62.          directory pointed to by $TARGET). When you use $SYSDIR or $WINDIR
  63.          you still have to put those files on your $DISK lines, otherwise,
  64.          they will not be installed at all.
  65.  
  66.          Another possible cause is that your files are compressed, and you
  67.          are putting their compressed names (with underscores and all) on
  68.          these lines. The only place where you should use the file names
  69.          with the underscores (if they are compressed with the -r switch)
  70.          is on the $DISK lines. In EVERY other place where you specify file
  71.          names, you MUST use the original names of the files (i.e., the
  72.          names of the uncompressed files, before they were compressed).
  73.  
  74.  
  75. 5.    Q: IN WHAT ORDER SHOULD THE ENTRIES IN MY INF FILE APPEAR?
  76.  
  77.       A: The whole INF file is read and processed at once. This means that
  78.          the order is which the reserved words appear is not important in
  79.          most cases.
  80.  
  81.          However, note that $USER-OPTION lines MUST appear before $OPTIONAL
  82.          lines, and that any reserved word which is numbered (e.g., $DISK,
  83.          $USER-OPTION, $OPTIONAL) must appear and be numbered in the correct
  84.          numerical order.
  85.  
  86.  
  87. 6.    Q: IN WHAT LANGUAGE IS YOUR INSTALLER WRITTEN, AND WILL YOU SUPPLY
  88.          THE SOURCE CODE (ON PAYMENT OF A FEE)?
  89.  
  90.       A: Chief's Installer Pro is written entirely in Borland Pascal 7.01.
  91.          I am sorry I cannot supply the source code.
  92.  
  93.